home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 012 / quickies.arc / CHOOSE.DOC < prev    next >
Text File  |  1987-03-17  |  704b  |  25 lines

  1. CHOOSE - Get single user choice from user
  2.  
  3. This program waits for a user keypress from amongst the alphabetic characters
  4. passed on the call line.  When the user presses one of the keys, the program
  5. terminates with ERRORLEVEL set to a value from 0 to n, corresponding to the
  6. characters passed, in reverse order.
  7.  
  8. Call:    CHOOSE ccccc
  9.  
  10. Example:
  11.  
  12.        CHOOSE  EDCBA
  13.  
  14.        If the user presses A, ERRORLEVEL is set to 0; B, set to 1, etc.
  15.  
  16. Test ERRORLEVEL in descending order, e.g.
  17.  
  18.      CHOOSE  CBA
  19.      IF ERRORLEVEL 2 GOTO :CCHOSEN
  20.      IF ERRORLEVEL 1 GOTO :BCHOSEN
  21.      IF ERRORLEVEL 0 GOTO :ACHOSEN
  22.  
  23. Entered by Dave Rich from MS-DOS Power User's Guide (correct codes)   
  24.  
  25.